e86b03c2e61fdf03ee7360d43f38a5d6eb8eca3b,utils/src/com/cloud/utils/crypt/DBEncryptionUtil.java,DBEncryptionUtil,decrypt,#String#,47
Before Change
if(s_encryptor == null){
initialize();
}
return s_encryptor.decrypt(encrypted);
}
private static void initialize(){
After Change
String plain = null;
try {
plain = s_encryptor.decrypt(encrypted);
} catch (EncryptionOperationNotPossibleException e) {
s_logger.debug("Error while decrypting: "+encrypted);
throw e;
}
return plain;
}
private static void initialize(){